What are the uses of view?
What are the uses of view?
643
03-Nov-2020
Updated on 03-Nov-2020
Rahul Roi
03-Nov-2020If we are discussion about the role of views in SQL server then founded that it is kind of virtual tables.
A view has also some rows and columns as they are in a real table in the database.
We can also create a view by selecting fields from one or more tables present in the database.
Where a view can either have all the rows of a table or specific rows based on certain condition.
And where the VIEW in SQL is a logical subset of data from one or more tables. And mostly, the view is used to restrict data access.